home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / arc44s.lbr / ARCPACK.MQC / arcpack.mac
Text File  |  1986-01-19  |  9KB  |  230 lines

  1. /*  ARC - Archive utility - ARCPACK
  2.  
  3. $define(tag,$$segment(@1,$$index(@1,=)+1))#
  4. $define(version,Version $tag(
  5. TED_VERSION DB =3.18), created on $tag(
  6. TED_DATE DB =11/09/85) at $tag(
  7. TED_TIME DB =02:47:49))#
  8. $undefine(tag)#
  9.     $version
  10.  
  11. (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  12.  
  13.     By:  Thom Henderson
  14.  
  15.     Description:
  16.          This file contains the routines used to compress a file
  17.          when placing it in an archive.
  18.  
  19.     Language:
  20.          Computer Innovations Optimizing C86
  21. */
  22. #include <stdio.h>
  23. #include "arc.h"
  24.  
  25. /* stuff for non-repeat packing */
  26.  
  27. #define DLE 0x90                       /* repeat sequence marker */
  28.  
  29. static unsigned char state;            /* current packing state */
  30.  
  31. /* non-repeat packing states */
  32.  
  33. #define NOHIST  0                      /* don't consider previous input*/
  34. #define SENTCHAR 1                     /* lastchar set, no lookahead yet */
  35. #define SENDNEWC 2                     /* run over, send new char next */
  36. #define SENDCNT 3                      /* newchar set, send count next */
  37.  
  38. /* packing results */
  39.  
  40. static long stdlen;                    /* length for standard packing */
  41. static int crcval;                     /* CRC check value */
  42.  
  43. pack(f,t,hdr)                          /* pack file into an archive */
  44. FILE *f, *t;                           /* source, destination */
  45. struct heads *hdr;                     /* pointer to header data */
  46. {
  47.     int c;                             /* one character of stream */
  48.     long ncrlen;                       /* length after packing */
  49.     long huflen;                       /* length after squeezing */
  50.     extern long lzwlen;                /* length after crunching */
  51.     long pred_sq(), file_sq();         /* stuff for squeezing */
  52.     char tnam[$strlen];                /* temporary name buffer */
  53.     char *makefnam();                  /* filename fixer upper */
  54.     FILE *crn = NULL;                  /* temporary crunch file */
  55.  
  56.     /* first pass - see which method is best */
  57.  
  58.     if(!nocomp && !kludge)             /* if no kludges in effect */
  59.     {    if(note)
  60.               printf(" analyzing, ");
  61.  
  62.          if(arctemp)                   /* use temp area if specified */
  63.               sprintf(tnam,"%s$ARCTEMP.CRN",arctemp);
  64.          else makefnam("$ARCTEMP.CRN",arcname,tnam);
  65.          if(warn)
  66.               if(crn=fopen(tnam,"rb"))
  67.                    abort("Temporary file %s already exists",tnam);
  68.          crn = fopen(tnam,"wrb");
  69.  
  70.          state = NOHIST;               /* initialize ncr packing */
  71.          stdlen =  ncrlen = 0;         /* reset size counters */
  72.          crcval = 0;                   /* initialize CRC check value */
  73.  
  74.          init_cr();                    /* initialize for crunching */
  75.          init_sq();                    /* initialize for squeeze scan */
  76.  
  77.          while((c=getc_ncr(f))!=EOF)   /* for each byte of file */
  78.          {    ncrlen++;                /* one more packed byte */
  79.               scan_sq(c);              /* see what squeezing can do */
  80.               putc_cr(c,crn);          /* see what crunching can do */
  81.          }
  82.          huflen = pred_sq();           /* finish up after squeezing */
  83.          fini_cr(crn);                 /* finish up after crunching */
  84.     }
  85.     else                               /* else kludge the method */
  86.     {    stdlen = 0;                   /* make standard look best */
  87.          ncrlen = huflen = lzwlen = 1;
  88.     }
  89.  
  90.     /* standard set-ups common to all methods */
  91.  
  92.     fseek(f,0L,0);                     /* rewind input */
  93.     hdr->crc = crcval;                 /* note CRC check value */
  94.     hdr->length = stdlen;              /* set actual file length */
  95.     state = NOHIST;                    /* reinitialize ncr packing */
  96.  
  97.     /* choose and use the shortest method */
  98.  
  99.     if(stdlen<=ncrlen && stdlen<=huflen && stdlen<=lzwlen)
  100.     {    if(note)
  101.               printf("storing, ");     /* store without compression */
  102.          hdrver = 2;                   /* note packing method */
  103.          stdlen = crcval = 0;          /* recalc these for kludge */
  104.          while((c=getch(f))!=EOF)      /* store it straight */
  105.               fputc(c,t);
  106.          hdr->size = hdr->length = stdlen;
  107.          hdr->crc = crcval;
  108.     }
  109.  
  110.     else if(ncrlen<huflen && ncrlen<lzwlen)
  111.     {    if(note)
  112.               printf("packing, ");     /* pack with repeat suppression */
  113.          hdrver = 3;                   /* note packing method */
  114.          hdr->size = ncrlen;           /* set data length */
  115.          while((c=getc_ncr(f))!=EOF)
  116.               fputc(c,t);
  117.     }
  118.  
  119.     else if(huflen<lzwlen)
  120.     {    if(note)
  121.               printf("squeezing, ");
  122.          hdrver = 4;                   /* note packing method */
  123.          hdr->size = file_sq(f,t);     /* note final size */
  124.     }
  125.  
  126.     else
  127.     {    if(note)
  128.               printf("crunching, ");
  129.          hdrver = 6;
  130.          hdr->size = lzwlen;           /* size should not change */
  131.          if(crn)                       /* if temp was created */
  132.          {    fseek(crn,0L,0);         /* then copy over crunched temp */
  133.               while((c=fgetc(crn))!=EOF)
  134.                    fputc(c,t);
  135.          }
  136.          else                          /* else re-crunch */
  137.          {    while((c=getc_ncr(f))!=EOF)
  138.                    putc_cr(c,t);
  139.               fini_cr(crn);            /* finish up after crunching */
  140.          }
  141.     }
  142.  
  143.     /* standard cleanups common to all methods */
  144.  
  145.     if(crn)                            /* get rid of crunch temporary */
  146.     {    fclose(crn);
  147.          if(unlink(tnam) && warn)
  148.               printf("Cannot delete temporary file %s\n",tnam);
  149.     }
  150.     if(note)
  151.          printf("done.\n");
  152. }
  153.  
  154. /*  Non-repeat compression - text is passed through normally, except that
  155.     a run of more than two is encoded as:
  156.  
  157.          <char> <DLE> <count>
  158.  
  159.     Special case: a count of zero indicates that the DLE is really a DLE,
  160.     not a repeat marker.
  161. */
  162.  
  163. int getc_ncr(f)                        /* get bytes with collapsed runs */
  164. FILE *f;                               /* file to get from */
  165. {
  166.     static int lastc;                  /* value returned on last call */
  167.     static int repcnt;                 /* repetition counter */
  168.     static int c;                      /* latest value seen */
  169.  
  170.     switch(state)                      /* depends on our state */
  171.     {
  172.     case NOHIST:                       /* no relevant history */
  173.          state = SENTCHAR;
  174.          return lastc = getch(f);      /* remember the value next time */
  175.  
  176.     case SENTCHAR:                     /* char was sent. look ahead */
  177.          switch(lastc)                 /* action depends on char */
  178.          {
  179.          case DLE:                     /* if we sent a real DLE */
  180.               state = NOHIST;          /* then start over again */
  181.               return 0;                /* but note that the DLE was real */
  182.  
  183.          case EOF:                     /* EOF is always a special case */
  184.               return EOF;
  185.  
  186.          default:                      /* else test for a repeat */
  187.               for(repcnt=1; (c=getch(f))==lastc && repcnt<255; repcnt++)
  188.                    ;                   /* find end of run */
  189.  
  190.               switch(repcnt)           /* action depends on run size */
  191.               {
  192.               case 1:                  /* not a repeat */
  193.                    return lastc = c;   /* but remember value next time */
  194.  
  195.               case 2:                  /* a repeat, but too short */
  196.                    state = SENDNEWC;   /* send the second one next time */
  197.                    return lastc;
  198.  
  199.               default:                 /* a run - compress it */
  200.                    state = SENDCNT;    /* send repeat count next time */
  201.                    return DLE;         /* send repeat marker this time */
  202.               }
  203.          }
  204.  
  205.     case SENDNEWC:                     /* send second char of short run */
  206.          state = SENTCHAR;
  207.          return lastc = c;
  208.  
  209.     case SENDCNT:                      /* sent DLE, now send count */
  210.          state = SENDNEWC;
  211.          return repcnt;
  212.  
  213.     default:
  214.          abort("Bug - bad ncr state\n");
  215.     }
  216. }
  217.  
  218. static int getch(f)                    /* special get char for packing */
  219. FILE *f;                               /* file to get from */
  220. {
  221.     int c;                             /* a char from the file */
  222.  
  223.     if((c=fgetc(f))!=EOF)              /* if not the end of file */
  224.     {    crcval = addcrc(crcval,c);    /* then update CRC check value */
  225.          stdlen++;                     /* and bump length counter */
  226.     }
  227.  
  228.     return c;
  229. }
  230.